home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 11 / FM Towns Free Software Collection 11.iso / t_os / tool / dolmorph / src / ypoints.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-10-07  |  2.1 KB  |  83 lines

  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <string.h>
  4. #include <winb.h>
  5. #include <te.h>
  6. #include <fntb.h>
  7. #include <gui.h>
  8.  
  9. int    idPointsWin = -1 ;
  10. int    idPointsTitleDBtn = -1 ;
  11. int    idPointsTitleMsg = -1 ;
  12. int    idPointsTypeTIcon[2] = -1 ;
  13. int    idPointsCommandTIcon[3] = -1 ;
  14. int    idPointsEditDBtn[6] = -1 ;
  15. int    idPointsEditMsg[6] = -1 ;
  16. int    idPointsDarkTIcon[2] = -1 ;
  17. int    idPointsDarkMsg[2] = -1 ;
  18.  
  19. /*    initDataZPOINTS:idPointsWin:MJ_WINDOWL40の呼び出し関数    */
  20. int    PointsWinFunc(kobj, messId, argc, pev, trigger)
  21. int        kobj ;
  22. int        messId ;
  23. int        argc ;
  24. EVENT    *pev ;
  25. int        trigger ;
  26. {
  27.     return NOERR ;
  28. }
  29.  
  30. /*    initDataZPOINTS:idPointsTypeTIcon[0]:MJ_TICONL40の呼び出し関数    */
  31. /*    initDataZPOINTS:idPointsTypeTIcon[1]:MJ_TICONL40の呼び出し関数    */
  32. int    PointsTypeTIconFunc(kobj, messId, argc, pev, trigger)
  33. int        kobj ;
  34. int        messId ;
  35. int        argc ;
  36. EVENT    *pev ;
  37. int        trigger ;
  38. {
  39.     return NOERR ;
  40. }
  41.  
  42. /*    initDataZPOINTS:idPointsCommandTIcon[0]:MJ_TICONL40の呼び出し関数    */
  43. /*    initDataZPOINTS:idPointsCommandTIcon[1]:MJ_TICONL40の呼び出し関数    */
  44. /*    initDataZPOINTS:idPointsCommandTIcon[2]:MJ_TICONL40の呼び出し関数    */
  45. int    PointsCommandTIconFunc(kobj, messId, argc, pev, trigger)
  46. int        kobj ;
  47. int        messId ;
  48. int        argc ;
  49. EVENT    *pev ;
  50. int        trigger ;
  51. {
  52.     return NOERR ;
  53. }
  54.  
  55. /*    initDataZPOINTS:idPointsEditDBtn[0]:MJ_DBUTTONL40の呼び出し関数    */
  56. /*    initDataZPOINTS:idPointsEditDBtn[1]:MJ_DBUTTONL40の呼び出し関数    */
  57. /*    initDataZPOINTS:idPointsEditDBtn[2]:MJ_DBUTTONL40の呼び出し関数    */
  58. /*    initDataZPOINTS:idPointsEditDBtn[3]:MJ_DBUTTONL40の呼び出し関数    */
  59. /*    initDataZPOINTS:idPointsEditDBtn[4]:MJ_DBUTTONL40の呼び出し関数    */
  60. /*    initDataZPOINTS:idPointsEditDBtn[5]:MJ_DBUTTONL40の呼び出し関数    */
  61. int    PointsEditDBtnFunc(kobj, messId, argc, pev, trigger)
  62. int        kobj ;
  63. int        messId ;
  64. int        argc ;
  65. EVENT    *pev ;
  66. int        trigger ;
  67. {
  68.     return NOERR ;
  69. }
  70.  
  71. /*    initDataZPOINTS:idPointsDarkTIcon[0]:MJ_TICONL40の呼び出し関数    */
  72. /*    initDataZPOINTS:idPointsDarkTIcon[1]:MJ_TICONL40の呼び出し関数    */
  73. int    PointsDarkTIconFunc(kobj, messId, argc, pev, trigger)
  74. int        kobj ;
  75. int        messId ;
  76. int        argc ;
  77. EVENT    *pev ;
  78. int        trigger ;
  79. {
  80.     return NOERR ;
  81. }
  82.  
  83.